c436a7d815c7eddd22800788295b9a2756da00f9,platform/indexing-impl/src/com/intellij/psi/impl/search/PsiSearchHelperImpl.java,PsiSearchHelperImpl,processAllFilesWithWordInComments,#String#GlobalSearchScope#Processor#,434

Before Change



  @Override
  public void processAllFilesWithWordInComments(@NotNull String word, @NotNull GlobalSearchScope scope, @NotNull Processor<PsiFile> processor) {
    CacheManager.SERVICE.getInstance(myManager.getProject()).processFilesWithWord(processor, word, UsageSearchContext.IN_COMMENTS, scope, true);
  }

  @Override

After Change


  public boolean processAllFilesWithWordInComments(@NotNull String word,
                                                   @NotNull GlobalSearchScope scope,
                                                   @NotNull Processor<PsiFile> processor) {
    return CacheManager.SERVICE.getInstance(myManager.getProject()).processFilesWithWord(processor, word, UsageSearchContext.IN_COMMENTS, scope, true);
  }

  @Override